home *** CD-ROM | disk | FTP | other *** search
- package com.extensibility.xml;
-
- import com.extensibility.plugin.api.URIScheme;
- import com.extensibility.plugin.api.URISchemeAdapter;
- import java.io.IOException;
- import java.io.InputStream;
- import java.io.OutputStream;
- import java.io.Reader;
- import java.io.Writer;
-
- public abstract class URIDelegateScheme extends URISchemeAdapter {
- protected URIScheme.Manager manager;
- protected URIScheme delegateScheme;
-
- public URIDelegateScheme() {
- this.delegateScheme = null;
- this.manager = null;
- }
-
- public URIDelegateScheme(URIScheme var1, URIScheme.Manager var2) {
- this.manager = var2;
- this.delegateScheme = var1;
- }
-
- public URIScheme construct(Object var1) {
- return null;
- }
-
- public URIScheme toParent() {
- URIScheme var1 = this.delegateScheme.toParent();
- return var1 != null ? this.construct(var1) : null;
- }
-
- public String getScheme() {
- return this.delegateScheme.getScheme();
- }
-
- public URIScheme renameTo(String var1) {
- return this.delegateScheme.renameTo(var1);
- }
-
- public String getUIName() {
- return this.delegateScheme.getUIName();
- }
-
- public long getLength() {
- return this.delegateScheme.getLength();
- }
-
- public InputStream createInputStream() throws IOException {
- return this.delegateScheme.createInputStream();
- }
-
- public Reader createReader() throws IOException {
- return this.delegateScheme.createReader();
- }
-
- public OutputStream createOutputStream() throws IOException {
- return this.delegateScheme.createOutputStream();
- }
-
- public Writer createWriter() throws IOException {
- return this.delegateScheme.createWriter();
- }
-
- public boolean exists() {
- return this.delegateScheme.exists();
- }
-
- public boolean hasPersistence() {
- return this.delegateScheme.hasPersistence();
- }
-
- public boolean isEmpty() {
- return this.delegateScheme.isEmpty();
- }
-
- public boolean isReadOnly() {
- return this.delegateScheme.isReadOnly();
- }
-
- public boolean equals(URIScheme var1) {
- return this.delegateScheme.equals(var1);
- }
-
- public int compareTo(URIScheme var1) {
- return this.delegateScheme.compareTo(var1);
- }
-
- public String getShortName() {
- return this.delegateScheme.getShortName();
- }
- }
-